python3: add libatomic as dependency
authorAlexandru Ardelean <[email protected]>
Sat, 8 Nov 2025 10:37:00 +0000 (12:37 +0200)
committerAlexandru Ardelean <[email protected]>
Sat, 8 Nov 2025 12:01:18 +0000 (14:01 +0200)
For some architectures (like mips24) this solves some build errors.

Signed-off-by: Alexandru Ardelean <[email protected]>
lang/python/python3/Makefile

index 136a17773ce8c0d2ee08e0f85d8409d745342307..ff8f8b19c3acc7c8abe07768bd86326880670ff8 100644 (file)
@@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
 include ../python3-version.mk
 
 PKG_NAME:=python3
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 PKG_VERSION:=$(PYTHON3_VERSION).$(PYTHON3_VERSION_MICRO)
 
 PKG_SOURCE:=Python-$(PKG_VERSION).tar.xz
@@ -70,7 +70,7 @@ endef
 define Package/libpython3
 $(call Package/python3/Default)
   TITLE+= core library
-  DEPENDS:=+libpthread
+  DEPENDS:=+libpthread +libatomic
   ABI_VERSION:=$(PYTHON3_VERSION)
 endef